//İnclude İçine Ekle

#define __TITLE_SYSTEM__

//Aramak 

"horse_skill_point = %d, "

//Altına Ekle

#ifdef __TITLE_SYSTEM__
			"t_choosed = %d, "
			"t_available = '%s', "
#endif

//Aramak

pkTab->horse_skill_point);

//Değiştir - Kendine Göre Düzenle

		pkTab->horse_skill_point
#ifdef __TITLE_SYSTEM__
		,pkTab->iTChoosed
		,pkTab->cTAvailable
#endif
		);


//Aramak

				"UNIX_TIMESTAMP(NOW())-UNIX_TIMESTAMP(last_play),horse_skill_point FROM player%s WHERE id=%d", GetTablePostfix(), packet->player_id);

//Değiştir - Kendine Göre Düzenle

				"UNIX_TIMESTAMP(NOW())-UNIX_TIMESTAMP(last_play),horse_skill_point,"
#ifdef __TITLE_SYSTEM__
				"t_choosed, "
				"t_available "
#endif
				"FROM player%s WHERE id=%d",

				GetTablePostfix(), packet->player_id);

//Aramak

str_to_number(pkTab->horse_skill_point, row[col++]);

//Altına Ekle

#ifdef __TITLE_SYSTEM__
	str_to_number(pkTab->iTChoosed, row[col++]);
	if (row[col])
		strlcpy(pkTab->cTAvailable, row[col], sizeof(pkTab->cTAvailable));
#endif

